home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / include / kudzu / ddc.h < prev    next >
C/C++ Source or Header  |  2005-12-04  |  1KB  |  50 lines

  1. /* Copyright 1999-2003 Red Hat, Inc.
  2.  *
  3.  * This software may be freely redistributed under the terms of the GNU
  4.  * public license.
  5.  *
  6.  * You should have received a copy of the GNU General Public License
  7.  * along with this program; if not, write to the Free Software
  8.  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  9.  *
  10.  */
  11.  
  12. #ifndef _KUDZU_DDC_H_
  13. #define _KUDZU_DDC_H_
  14.  
  15. #include "device.h"
  16.  
  17. struct ddcDevice {
  18.     /* common fields */
  19.     struct device *next;    /* next device in list */
  20.     int index;
  21.     enum deviceClass type;    /* type */
  22.     enum deviceBus bus;        /* bus it's attached to */
  23.     char * device;        /* device file associated with it */
  24.     char * driver;        /* driver to load, if any */
  25.     char * desc;        /* a description */
  26.     int detached;
  27.     void * classprivate;
  28.     /* ddc-specific fields */
  29.     struct ddcDevice *(*newDevice) (struct ddcDevice *dev);
  30.     void (*freeDevice) (struct ddcDevice *dev);
  31.     void (*writeDevice) (FILE *file, struct ddcDevice *dev);
  32.     int (*compareDevice) (struct ddcDevice *dev1, struct ddcDevice *dev2);
  33.     char * id;
  34.     int horizSyncMin;
  35.     int horizSyncMax;
  36.     int vertRefreshMin;
  37.     int vertRefreshMax;
  38.     int *modes;
  39.     long mem;
  40.     int physicalWidth;
  41.     int physicalHeight;
  42. };
  43.  
  44. struct ddcDevice *ddcNewDevice(struct ddcDevice *dev);
  45. struct device *ddcProbe(enum deviceClass probeClass, int probeFlags,
  46.             struct device *devlist);
  47. int ddcReadDrivers(char *filename);
  48. void ddcFreeDrivers();
  49. #endif
  50.